home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / comm1 / intsdkss.lha / include / sys / socket.h < prev    next >
C/C++ Source or Header  |  1996-04-09  |  5KB  |  163 lines

  1. #ifndef SYS_SOCKET_H
  2. #define SYS_SOCKET_H
  3.  
  4. #include <sys/types.h>
  5.  
  6. /*
  7.  * Copyright (c) 1982, 1985, 1986 Regents of the University of California.
  8.  * All rights reserved.
  9.  *
  10.  * Redistribution and use in source and binary forms are permitted
  11.  * provided that the above copyright notice and this paragraph are
  12.  * duplicated in all such forms and that any documentation,
  13.  * advertising materials, and other materials related to such
  14.  * distribution and use acknowledge that the software was developed
  15.  * by the University of California, Berkeley.  The name of the
  16.  * University may not be used to endorse or promote products derived
  17.  * from this software without specific prior written permission.
  18.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  19.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  20.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  21.  *
  22.  *    @(#)socket.h    7.3 (Berkeley) 6/27/88
  23.  */
  24.  
  25. /*
  26.  * Definitions related to sockets: types, address families, options.
  27.  */
  28.  
  29. /*
  30.  * Types
  31.  */
  32. #define    SOCK_STREAM    1        /* stream socket */
  33. #define    SOCK_DGRAM    2        /* datagram socket */
  34. #define    SOCK_RAW    3        /* raw-protocol interface */
  35. #define    SOCK_RDM    4        /* reliably-delivered message */
  36. #define    SOCK_SEQPACKET    5        /* sequenced packet stream */
  37.  
  38. /*
  39.  * Option flags per-socket.
  40.  */
  41. #define    SO_DEBUG    0x0001        /* turn on debugging info recording */
  42. #define    SO_ACCEPTCONN    0x0002        /* socket has had listen() */
  43. #define    SO_REUSEADDR    0x0004        /* allow local address reuse */
  44. #define    SO_KEEPALIVE    0x0008        /* keep connections alive */
  45. #define    SO_DONTROUTE    0x0010        /* just use interface addresses */
  46. #define    SO_BROADCAST    0x0020        /* permit sending of broadcast msgs */
  47. #define    SO_USELOOPBACK    0x0040        /* bypass hardware when possible */
  48. #define    SO_LINGER    0x0080        /* linger on close if data present */
  49. #define    SO_OOBINLINE    0x0100        /* leave received OOB data in line */
  50.  
  51. /*
  52.  * Additional options, not kept in so_options.
  53.  */
  54. #define SO_SNDBUF    0x1001        /* send buffer size */
  55. #define SO_RCVBUF    0x1002        /* receive buffer size */
  56. #define SO_SNDLOWAT    0x1003        /* send low-water mark */
  57. #define SO_RCVLOWAT    0x1004        /* receive low-water mark */
  58. #define SO_SNDTIMEO    0x1005        /* send timeout */
  59. #define SO_RCVTIMEO    0x1006        /* receive timeout */
  60. #define    SO_ERROR    0x1007        /* get error status and clear */
  61. #define    SO_TYPE        0x1008        /* get socket type */
  62.  
  63. /*
  64.  * Structure used for manipulating linger option.
  65.  */
  66. struct    linger {
  67.     int    l_onoff;        /* option on/off */
  68.     int    l_linger;        /* linger time */
  69. };
  70.  
  71. /*
  72.  * Level number for (get/set)sockopt() to apply to socket itself.
  73.  */
  74. #define    SOL_SOCKET    -1        /* options for socket level */
  75.  
  76. /*
  77.  * Address families.
  78.  */
  79. #define    AF_UNSPEC    0        /* unspecified */
  80. #define    AF_UNIX        1        /* local to host (pipes, portals) */
  81. #define    AF_INET        2        /* internetwork: UDP, TCP, etc. */
  82. #define    AF_IMPLINK    3        /* arpanet imp addresses */
  83. #define    AF_PUP        4        /* pup protocols: e.g. BSP */
  84. #define    AF_CHAOS    5        /* mit CHAOS protocols */
  85. #define    AF_NS        6        /* XEROX NS protocols */
  86. #define    AF_NBS        7        /* nbs protocols */
  87. #define    AF_ECMA        8        /* european computer manufacturers */
  88. #define    AF_DATAKIT    9        /* datakit protocols */
  89. #define    AF_CCITT    10        /* CCITT protocols, X.25 etc */
  90. #define    AF_SNA        11        /* IBM SNA */
  91. #define AF_DECnet    12        /* DECnet */
  92. #define AF_DLI        13        /* Direct data link interface */
  93. #define AF_LAT        14        /* LAT */
  94. #define    AF_HYLINK    15        /* NSC Hyperchannel */
  95. #define    AF_APPLETALK    16        /* Apple Talk */
  96.  
  97. #define    AF_MAX        17
  98.  
  99. /*
  100.  * Structure used by kernel to store most
  101.  * addresses.
  102.  */
  103. struct sockaddr {
  104.     u_short    sa_family;        /* address family */
  105.     char    sa_data[14];        /* up to 14 bytes of direct address */
  106. };
  107.  
  108. /*
  109.  * Structure used by kernel to pass protocol
  110.  * information in raw sockets.
  111.  */
  112. struct sockproto {
  113.     u_short    sp_family;        /* address family */
  114.     u_short    sp_protocol;        /* protocol */
  115. };
  116.  
  117. /*
  118.  * Protocol families, same as address families for now.
  119.  */
  120. #define    PF_UNSPEC    AF_UNSPEC
  121. #define    PF_UNIX        AF_UNIX
  122. #define    PF_INET        AF_INET
  123. #define    PF_IMPLINK    AF_IMPLINK
  124. #define    PF_PUP        AF_PUP
  125. #define    PF_CHAOS    AF_CHAOS
  126. #define    PF_NS        AF_NS
  127. #define    PF_NBS        AF_NBS
  128. #define    PF_ECMA        AF_ECMA
  129. #define    PF_DATAKIT    AF_DATAKIT
  130. #define    PF_CCITT    AF_CCITT
  131. #define    PF_SNA        AF_SNA
  132. #define PF_DECnet    AF_DECnet
  133. #define PF_DLI        AF_DLI
  134. #define PF_LAT        AF_LAT
  135. #define    PF_HYLINK    AF_HYLINK
  136. #define    PF_APPLETALK    AF_APPLETALK
  137.  
  138. #define    PF_MAX        AF_MAX
  139.  
  140. /*
  141.  * Maximum queue length specifiable by listen.
  142.  */
  143. #define    SOMAXCONN    5
  144.  
  145. /*
  146.  * Message header for recvmsg and sendmsg calls.
  147.  */
  148. struct msghdr {
  149.     caddr_t    msg_name;        /* optional address */
  150.     int    msg_namelen;        /* size of address */
  151.     struct    iovec *msg_iov;        /* scatter/gather array */
  152.     int    msg_iovlen;        /* # elements in msg_iov */
  153.     caddr_t    msg_accrights;        /* access rights sent/received */
  154.     int    msg_accrightslen;
  155. };
  156.  
  157. #define    MSG_OOB        0x1        /* process out-of-band data */
  158. #define    MSG_PEEK    0x2        /* peek at incoming message */
  159. #define    MSG_DONTROUTE    0x4        /* send without using routing tables */
  160.  
  161. #define    MSG_MAXIOVLEN    16
  162.  
  163. #endif /* SYS_SOCKET_H */